home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / c_wndw.arc / TURBOC.BAT < prev    next >
Encoding:
DOS Batch File  |  1990-01-28  |  556 b   |  17 lines

  1. REM Ready to install to Turbo C on default disc drive?
  2. PAUSE Press any key to continue, or Ctrl+C to Halt
  3. IF NOT EXIST \tc\include\stdio.h GOTO ERROR
  4. COPY a:c_wndw.h \tc\include\c_wndw.h /v
  5. COPY a:c_wndw.tur \tc\lib\c_wndw.lib /v
  6. copy a:mtest.tur \tc\mtest.h
  7. copy a:complink.tur \tc\complink.bat
  8. REM Ready to install the sample programs?
  9. PAUSE Press any key to continue, or Ctrl+C to Halt
  10. MD \tc\marietta
  11. copy a:*.c \tc\marietta\*.c
  12. copy a:*.prj \tc\marietta\*.prj
  13. GOTO END
  14. :ERROR
  15. REM Could not find library <stdio.h> on default disc
  16. :END
  17.